home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / argument_name.e < prev    next >
Text File  |  2000-03-25  |  4KB  |  126 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class ARGUMENT_NAME
  17.    --
  18.    -- Handling of arguments.
  19.    --
  20.  
  21. inherit LOCAL_ARGUMENT;
  22.  
  23. feature
  24.  
  25.    is_writable: BOOLEAN is false;
  26.  
  27.    frozen assertion_check(tag: CHARACTER) is
  28.       do
  29.       end;
  30.  
  31.    frozen isa_dca_inline_argument: INTEGER is
  32.       do
  33.          Result := rank;
  34.       end;
  35.  
  36.    frozen dca_inline_argument(formal_arg_type: TYPE) is
  37.       do
  38.          cpp.put_ith_argument(rank);
  39.       end;
  40.  
  41.    frozen pretty_print is
  42.       do
  43.          fmt.put_string(to_string);
  44.       end;
  45.  
  46.    frozen mapping_c_target(target_type: TYPE) is
  47.       local
  48.          flag: BOOLEAN;
  49.          rt: TYPE;
  50.       do
  51.          flag := cpp.call_invariant_start(target_type);
  52.          rt := result_type.run_type;
  53.          if rt.is_reference then
  54.             if target_type.is_reference then
  55.                -- Reference into Reference :
  56.                cpp.put_string(fz_b7);
  57.                cpp.put_integer(target_type.id);
  58.                cpp.put_string(fz_b8);
  59.                cpp.print_argument(rank);
  60.                cpp.put_character(')');
  61.             else
  62.                -- Reference into Expanded :
  63.                cpp.print_argument(rank);
  64.             end;
  65.          elseif target_type.is_reference then
  66.             -- Expanded into Reference :
  67.             cpp.print_argument(rank);
  68.          elseif rt.is_user_expanded then
  69.             -- User Expanded into User Expanded :
  70.             if not rt.is_dummy_expanded then
  71.                cpp.put_character('&');
  72.             end;
  73.             cpp.print_argument(rank);
  74.          else
  75.             -- Kernel Expanded into Kernel Expanded :
  76.             cpp.print_argument(rank);
  77.          end;
  78.          if flag then
  79.             cpp.call_invariant_end;
  80.          end;
  81.       end;
  82.  
  83.    frozen mapping_c_arg(formal_arg_type: TYPE) is
  84.       do
  85.          cpp.print_argument(rank);
  86.       end;
  87.  
  88.    frozen compile_to_c is
  89.       do
  90.          cpp.print_argument(rank);
  91.       end;
  92.  
  93.    frozen compile_to_jvm is
  94.       local
  95.          jvm_offset: INTEGER;
  96.       do
  97.          jvm_offset := jvm.argument_offset_of(Current);
  98.          result_type.run_type.jvm_push_local(jvm_offset);
  99.       end;
  100.  
  101.    frozen jvm_branch_if_false: INTEGER is
  102.       do
  103.          compile_to_jvm;
  104.          Result := code_attribute.opcode_ifeq;
  105.       end;
  106.  
  107.    frozen jvm_branch_if_true: INTEGER is
  108.       do
  109.          compile_to_jvm;
  110.          Result := code_attribute.opcode_ifne;
  111.       end;
  112.  
  113.    frozen compile_to_jvm_into(dest: TYPE): INTEGER is
  114.       do
  115.          Result := standard_compile_to_jvm_into(dest);
  116.       end;
  117.  
  118.    frozen jvm_assign is
  119.       do
  120.          check false end;
  121.       end;
  122.  
  123. end -- ARGUMENT_NAME
  124.  
  125.  
  126.